home *** CD-ROM | disk | FTP | other *** search
- Short: 3D library, OpenGL based, Amiga v1.6
- Author: brianp@ssec.wisc.edu (BrianP) Amiga Port: d94sz@efd.lth.se (Stefan Zivkovic)
- Uploader: d94sz@efd.lth.se (Stefan Zivkovic)
- Version: Mesa v2.0 Amiga version 1.6
- Type: dev/c
- Requires: System v39, SAS 6.57 or GCC.
- Replaces: dev/c/Mesa-2.0_Amiga-1.5.lha
-
- The Mesa 3-D graphics library
-
- Copyright (C) 1995-1996 Brian Paul
-
-
-
- Introduction
- ============
-
- Mesa is a 3-D graphics library with an API which is very similar to that
- of OpenGL*. To the extent that Mesa utilizes the OpenGL command syntax
- or state machine, it is being used with authorization from Silicon Graphics,
- Inc. However, the author makes no claim that Mesa is in any way a
- compatible replacement for OpenGL or associated with Silicon Graphics, Inc.
- Those who want a licensed implementation of OpenGL should contact a licensed
- vendor. This software is distributed under the terms of the GNU Library
- General Public License, see the LICENSE file for details.
-
- * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
-
- Miscellaneous
- =============
-
- There is a Amiga Mesa WWW page: http://www.efd.lth.se/~d94sz/amesa
- and the orginal Mesa WWW page: http://www.ssec.wisc.edu/~brianp/Mesa.html
-
-
- Since the OpenGL API is used, OpenGL documentation can serve as the
- documentation for Mesa's core functions. Here are a few sources:
-
- Man pages: http://www.digital.com:80/pub/doc/opengl/
- Spec doc: http://www.sgi.com/Technology/openGL/glspec/glspec.html
-
-
- Author
- ======
-
- Brian Paul
- Space Science and Engineering Center
- University of Wisconsin - Madison
- 1225 W. Dayton St.
- Madison, WI 53706
-
- brianp@ssec.wisc.edu
-
-
- AMIGA PORT of MESA: THE OPENGL SOFTWARE EMULATION by Stefan Zivkovic
- ====================================================================
- When I first read about OPENGL in the summer of 1995 I was happy and filled with
- joy. A few days later I surfed to the mesa homepage but only to discover that
- there was no Amiga version. In the beginning of 1996 someone released a AMIWIN
- version so I took the archive home to try it out, but it stayed packed on my HD.
- One day when I was home and playing around with my HD I saw the archive and
- started to try to make it work. Without luck as it seemed that you needed
- the AMIWIN Includes and LIBFILES. But I also discovered that it was possible
- to port it with not to much effort (WRONG THERE) so I begun.
-
- For the Amiga there is only three important files + one directory.
-
- src/Amigamesa.c The mesa GL Amiga implementation
- (ddsample.c with some Amiga code)
- src-tk/Awindow.c The tk (and aux) machine specific code)
- include/GL/Amigamesa.h The prototypes for Amigamesa
-
- Amiga/#?
-
- Installing
- ==========
- If you have the big archive you just have to unpack is where you want it.
- If you have the updatepackage you need the orginal mesa archive and then
- you will nead lha in your path and run the installer script in /amiga
- (or just unpack AMesa.lha yourself)
-
-
- Compiling
- =========
- If you use SAS just execute mklib.amiga (will appear if you have installed it correctly)
- For compiling with gcc you have to enter the command "make amiga-gcc". Via the
- environment variable LOCALFLAGS you can specify additional optimizations (for instance -m68040).
-
- To use CyberGfx you have to define ADISP_CYBERGFX in include/gl/amigamesa.h
- (you nead the includes for it (ftp.phase5.de))
-
- About the code.
- ===============
- The Code is compiled with cpu=020 math=ieee
- If you would like it different then use the /Amiga/scoptions read next statement
- The code is by defult amiga standard graphics If you for some unknown don't want
- this there is a define in top of include/gl/amigamesa.h
-
- The common scoptions file is in /Amiga
- Here exists a scoption that is used in the WHOLE package, change math here
- and it will reflect in all dirs
-
- In /Amiga/library there are previews of files to the shared-library version
- (This doesn't work yet but should give you an idea of how to use it)
-
- In /Amiga/Examples there should be some amiga-demo code,
- but I've got no code yet so feel free to send me your own examples.
-
- All tk actions in tkExec are not finished. But most of them is. (low priority)
-
- Most of the examples work. (ALL?)
-
- etc. etc.
-
- Write your own OpenGL code
- ==========================
- 1. For a easy start, look at the examples in /book/ and modify them
- The examples uses a portable layer toolkit Not amiga specific at all
-
- Until The shared library is ready you have to define AMIGALIB when
- using <GL/gl.h>
-
- 2. For a better amigaprogram just open a window (on your favourite screen) and
- add a few lines in your source:
-
- -----------------------------------------------------------------------------
- /* ADD where you want it */
- #include <GL/gl.h>
-
- Init() /* sets up viewport and projections */
- {
- glMatrixMode (GL_PROJECTION); /* prepare for and then */
- glLoadIdentity (); /* define the projection */
- glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 20.0);/* transformation */
- glMatrixMode (GL_MODELVIEW); /* back to modelview matrix*/
- glViewport (0, 0, 200, 200); /* define the viewport */
- } /* ^ ^ ^^^ ^^^--- The size of the mesa/openGL window */
-
-
-
- /* ADD In after you opened your window */
-
- struct amigamesa_context *glcont;
-
- glcont=AmigaMesaCreateContextTags(
- AMA_DrawMode,AMESA_AGA,
- AMA_Window,(unsigned long) test_window, // My Windowptr
- AMA_RastPort,(unsigned long) test_window->RPort,
- AMA_Screen,(unsigned long) test_window->WScreen,
- AMA_DoubleBuf, GL_FALSE, // or GL_TRUE
- AMA_RGBMode, GL_TRUE, // -"-
- AMA_Left, test_window->BorderLeft, // offset from left edgr
- AMA_Bottom, test_window->BorderBottom+1, // offset from bottom edgr
- TAG_DONE,0);
-
- // Neaded tags is AMA_RastPort,AMA_Screen if you supply AMA_Window
- // it looks for RastPort and Screen in it so a Window_ptr will do.
-
- if (glcont)
- {
- AmigaMesaMakeCurrent(glcont,glcont->buffer);
- /* All your gl comands */
- /*handle_window_events(test_window); or whatever */
- AmigaMesaDestroyContext(glcont);
- }
-
- /* Don't forget to call glViewport() when you resize the window */
- ------------------------------------------------------------------------------
- if you set doublebuff to GL_TRUE then you just switch buffer with
- AmigaMesaSwapBuffers(glcont);
-
- For more info on the internal of the Amiga port you can check the files
- src/Amigamesa.c and include/GL/Amigamesa.h for tk check src-tk/Awindow.c
- And info on how to write your own gfx-routines read include/GL/amigamesa.h for
- more instructions.
-
- THINGS THAT MAY GO WRONG
- ========================
- Remember GL ALWAYS render with (0,0) in the BOTTOM left corner.
-
- If you use SAS you have to use the latest version (v 6.57), there is some bugs
- in the older version's you can get free upgrades on aminet.
-
-
- WARNING The api has changed on AmigaMesaCreateContext() it is now called with
- a taglist. Read /include/GL/amigamesa.h
-
- Scoptions that should not be changed is Precision=MIXED, NoStackExtend, NoStackCheck.
-
- It compiles but all examples crash everytime:
- Set your stack high about 50kb or more.
-
- Linking complains about not finding _glBegin(): or @glBegin():
- You have compiled some code using the stack and some using registers as
- parameter passing, You have to chose one of them and us it on both places.
-
- The colors are really bad:
- To emulate 24bit I alloc 255 colors in the beginning spread over the
- palette and then use it. If you'd like better colors, buy a GFX-Card.
- (And wait for gfx-card versions.)
-
- Resizing is sometimes very very unhealthy.
-
- Please keep in mind that since SAS pre 6.57 contains a few bugs thats could give you
- problem please use the latest version of SAS (Aminet contains a uppgrade).
- I have many users that repordet problems that disapered when thay upgaded SAS to 6.57
-
-
- LATEST VERSION:
- ===============
- http://www.efd.lth.se/~d94sz/amesa
-
- TODO:
- =====
- Debugg.
- Fix resizing bug.
-
-
- FUTURE:
- =======
- A shared library would be nice. (I have started)
- Faster and better. (You may have some nice idea?)
-
- HISTORY:
- ========
-
- Release:
- 0.8 This code worked with Mesa 1.2.6 and all makefiles also.
- But when I released it, Mesa 1.2.7 was released and some changes were made.
- It didn't work.
-
- 0.9 Makefiles is remapped to work with Mesa 1.2.7.
- Double buffering works.
- Implemented fast_poly_draw (big speed improvement).
- tkExec a few more tests were done. (right & middle mousebutton is not
- implemented)
-
- 1.0 I've put a common scoption file in /Amiga (thanks to Kamil Iskra).
- Due to the common scoptions you can change CPU and math more easy ,and
- compiler options set to default math=ieee, cpu=020 so that it works on
- 1200's and up
- Many bugfixes (thanks to Daniel Jönsson).
- Have fixed the smakefile name collision with AMIWIN version.
- Mesa 1.2.8 Fixed.
- Spellcorrection of the docs were made by Peter Sandén.
- (Blame him, not me!)
- All tk's windows are opened on a pubscreen named "MESA" if it exists.
-
- 1.1 Faster and more stable (Many thanks to Jorge Acereda (JAM))
- Faster pen usage now it allocates 255 pens and use them (thanks to
- Stefan Burström)
- A few enhancements here and there.
- Fixed a smake bug ignore=A only works in the latest SAS version. Now I
- have changed it to IGN=ALL (Thanx to everyone who reported this one)
-
- 1.2 Removed math from smakefiles, SAS handles this better self. (Kamil Iskra)
- Fixed a serious drawing bug (appeared when using GL_SMOTH).
- Fixed a very flexible programming API for future gfx-board implementations
- Added a BOOL AmigaMesaSetDefs(struct TagItem *tagList); usefull for future enhancements
- ***'API change: AmigaMesaCreateContext uses taglist se include/GL/amigamesa.h
- Faster on doublebuffer rendering. (Now I convert whole double buffer c2p)
- Easier to integrate future gfx-cards routines. Look in include/GL/amigamesa.h
- tk toolkit fixed to work better. Thanks to Georg 'Wulf' Krämer
-
- 1.4 Uppdated to reflect Mesa 2.0
- Small Bugfixes. Relesed With Mesa 2.0
-
- 1.5 A few bugs intruduced in 1.4 was fixed (a workaround SAS oml/slink bug)
- Due to a bug in SAS (oml/slink) 1.4 didn't work, this version should work better.
-
- 1.6 I haved splitted amigamesa into amigamesa and ADisp_AGA.c
- this ensures higer modularity, and becomes easier to se what is neaded to port
- if you want to make your own gfx rutines.
- ADisp_Cyb.c contains CyberGFX drawer rutines (Joerg Nilson)
- It's also posible to use gcc now. (Joerg Nilson)
- Now works with mesa 2.2.
-
-
- Due to my lack of time this will be my last relese of mesa, If you are interested to take over and mainten the source
- please feel free to do so, Just please let me know so I can put some info on my webpage.
-
-
-
- Please contact me with suggestions and additional info.
- You can reach me at:
-
- d94sz@efd.lth.se
-
- Or mail:
-
- Stefan Zivkovic
- Kämnärsv. 9L:225
- 226 46 LUND
-
- Or Phone:
- +46 46 150763
-
-
- ============================= Archive contents =============================
-
- Original Packed Ratio Date Time Name
- -------- ------- ----- --------- -------- -------------
- 293 170 41.9% 14-Nov-96 00:59:04 +descrip.mms
- 427 240 43.7% 03-Feb-97 20:13:10 +IAFA-PACKAGE
- 161 117 27.3% 13-Jun-96 01:41:00 +Imakefile
- 25267 9285 63.2% 19-Dec-94 18:56:58 +LICENSE
- 21870 4179 80.8% 25-Jun-97 20:18:14 +Make-config
- 10705 2908 72.8% 25-Jun-97 20:18:14 +Makefile
- 523 203 61.1% 25-Jun-97 20:18:14 +mklib.amiga
- 270 191 29.2% 16-Oct-96 00:35:04 +mms-config
- 35495 14129 60.1% 14-Mar-97 00:20:26 +README
- 645 383 40.6% 14-Mar-97 00:08:24 +README.3DFX
- 10871 5104 53.0% 25-Jun-97 20:18:14 +README.AMIGA
- 7075 2693 61.9% 06-Dec-95 17:44:52 +README.AMIWIN
- 3083 1218 60.4% 03-Feb-97 07:54:38 +README.BEOS
- 4665 1998 57.1% 23-Mar-97 05:51:30 +README.DOS
- 2137 1108 48.1% 27-Aug-96 23:29:56 +README.GLUT
- 250 178 28.8% 13-Aug-96 03:50:46 +README.OS2
- 660 405 38.6% 16-Oct-96 00:48:20 +README.VMS
- 13861 5667 59.1% 14-Mar-97 00:18:28 +VERSIONS
- 35 35 0.0% 18-Dec-96 18:14:56 +xlib.opt
- 8028 2590 67.7% 03-Feb-97 20:08:18 +glaux.h
- 147 114 22.4% 07-Jan-97 11:08:34 +MESADJ.BAT
- 1038 428 58.7% 23-Mar-97 05:51:32 +MESADOS.BAT
- 3237 1461 54.8% 07-Jan-97 20:23:54 +mklib.aix
- 555 210 62.1% 07-Jan-97 20:23:54 +mklib.amiwin
- 444 288 35.1% 07-Jan-97 20:24:56 +mklib.freebsd
- 611 375 38.6% 07-Jan-97 20:23:56 +mklib.hpux
- 923 551 40.3% 07-Jan-97 20:27:18 +mklib.irix5
- 914 549 39.9% 07-Jan-97 20:27:18 +mklib.irix6-32
- 916 551 39.8% 07-Jan-97 20:27:18 +mklib.irix6-64
- 917 549 40.1% 07-Jan-97 20:27:18 +mklib.irix6-n32
- 1004 555 44.7% 07-Jan-97 20:24:30 +mklib.linux
- 523 294 43.7% 07-Jan-97 20:24:22 +mklib.netbsd
- 585 302 48.3% 07-Jan-97 20:24:16 +mklib.openbsd
- 657 359 45.3% 08-Mar-97 00:56:06 +mklib.osf1
- 557 297 46.6% 07-Jan-97 20:24:12 +mklib.solaris
- 5694 2489 56.2% 23-Mar-97 05:48:02 +STARTUP.MK
- 2807 1243 55.7% 06-Jan-96 21:56:54 +dosmesa.h
- 2099 900 57.1% 03-Feb-97 20:03:24 +FooMesa.h
- 48822 10653 78.1% 11-Mar-97 00:27:54 +gl.h
- 13786 3132 77.2% 17-Feb-97 17:14:36 +gl_mangle.h
- 11060 3338 69.8% 19-Feb-97 10:14:02 +glu.h
- 2717 981 63.8% 03-Feb-97 19:16:44 +glu_mangle.h
- 5542 2037 63.2% 03-Feb-97 19:15:52 +glx.h
- 1939 803 58.5% 03-Feb-97 19:16:34 +glx_mangle.h
- 3068 1336 56.4% 19-Feb-97 10:14:04 +gmesa.h
- 6816 2632 61.3% 19-Feb-97 10:14:04 +osmesa.h
- 2602 1205 53.6% 30-Oct-96 03:12:52 +svgamesa.h
- 2799 1297 53.6% 22-Feb-97 16:49:04 +wmesa.h
- 6583 2230 66.1% 03-Feb-97 20:08:18 +gltk.h
- 11907 4227 64.4% 25-Jun-97 20:18:20 +Amigamesa.h
- 6478 2243 65.3% 30-Oct-96 03:13:04 +xmesa.h
- 917 325 64.5% 05-May-96 23:58:12 +clgd5470.h
- 1112 394 64.5% 06-May-96 23:31:22 +clgd5471.h
- 627 294 53.1% 06-May-96 23:50:40 +clgd5472.h
- 2227 891 59.9% 06-May-96 23:24:48 +clgd547x.h
- 2393 1142 52.2% 06-May-96 23:28:36 +cmesa.h
- 6800 1502 77.9% 05-May-96 23:58:14 +compiler.h
- 27511 5364 80.5% 06-May-96 23:30:24 +davinci.h
- 3891 839 78.4% 06-May-96 23:51:54 +graphics.h
- 114 105 7.8% 06-May-96 23:51:34 +lut.h
- 157 99 36.9% 05-May-96 23:58:14 +misc.h
- 1940 528 72.7% 06-May-96 23:49:36 +type.h
- 541 340 37.1% 16-Oct-96 00:45:00 +descrip.mms
- 596 317 46.8% 30-May-96 01:18:56 +Imakefile
- 2167 1099 49.2% 25-Jun-97 20:18:28 +Makefile
- 1449 789 45.5% 03-Feb-97 19:49:16 +Makefile.BeOS
- 1297 716 44.7% 06-Jan-97 13:53:20 +MAKEFILE.DJ
- 1400 751 46.3% 07-Jan-97 10:41:44 +MAKEFILE.DOS
- 1505 857 43.0% 14-May-96 23:39:42 +Makefile.NeXT
- 1991 1027 48.4% 24-Nov-96 19:17:48 +Makefile.OpenStep
- 1502 545 63.7% 17-May-96 02:22:44 +mesatkos2.def
- 118 87 26.2% 17-May-96 02:23:00 +MesaTkos2.rsp
- 10663 3263 69.3% 29-Jan-97 18:52:28 +README
- 9058 3843 57.5% 28-Apr-95 18:38:36 +README1
- 18161 5970 67.1% 25-Jun-97 20:18:28 +Awindow.c
- 2062 635 69.2% 22-May-96 17:56:04 +cursor.c
- 8835 1864 78.9% 13-Feb-97 19:43:08 +event.c
- 273995 45737 83.3% 23-Apr-96 20:57:42 +font.c
- 8661 1642 81.0% 13-Feb-97 19:44:16 +getset.c
- 4851 1392 71.3% 23-Apr-96 20:57:40 +image.c
- 997 437 56.1% 16-Apr-96 15:03:56 +private.h
- 0 0 0.0% 25-Jun-97 20:18:28 +SCOPTIONS
- 12406 1424 88.5% 23-Apr-96 20:57:40 +shapes.c
- 2665 1230 53.8% 25-Jun-97 20:18:28 +Smakefile
- 15520 4680 69.8% 03-Feb-97 19:32:14 +tkbeos.cpp
- 33048 9086 72.5% 07-Jan-97 11:06:40 +tkdos.c
- 28996 8451 70.8% 24-Nov-96 20:41:50 +tkwndws.c
- 19383 3601 81.4% 13-Feb-97 19:43:10 +window.c
- 732 160 78.1% 17-Feb-97 20:29:22 +depend
- 736 417 43.3% 16-Oct-96 00:44:22 +descrip.mms
- 725 348 52.0% 30-May-96 01:18:40 +Imakefile
- 1690 922 45.4% 27-Sep-96 01:22:38 +Makefile
- 1641 903 44.9% 03-Feb-97 19:56:12 +Makefile.BeOS
- 1664 893 46.3% 06-Jan-97 13:37:34 +MAKEFILE.DJ
- 1670 893 46.5% 07-Jan-97 10:42:24 +MAKEFILE.DOS
- 1578 863 45.3% 22-Oct-96 01:31:10 +Makefile.NeXT
- 1690 922 45.4% 30-Nov-96 14:34:38 +Makefile.OpenStep
- 1537 549 64.2% 24-Apr-96 02:20:08 +MesaGLUos2.def
- 180 104 42.2% 24-Apr-96 02:17:36 +MesaGLUos2.rsp
- 765 165 78.4% 16-Oct-96 00:43:56 +mms_depend
- 1500 762 49.2% 20-Feb-96 09:52:02 +README2
- 7628 2714 64.4% 11-Mar-97 00:58:40 +glu.c
- 1593 820 48.5% 27-Sep-96 01:20:42 +gluP.h
- 16830 4247 74.7% 27-Sep-96 01:21:20 +mipmap.c
- 15792 3694 76.6% 27-Sep-96 23:11:36 +nurbs.c
- 5282 1808 65.7% 27-Sep-96 01:21:28 +nurbs.h
- 12735 3095 75.6% 27-Sep-96 23:12:40 +nurbscrv.c
- 37132 6346 82.9% 27-Sep-96 23:13:04 +nurbssrf.c
- 23677 5465 76.9% 27-Sep-96 01:21:38 +nurbsutl.c
- 26481 6530 75.3% 27-Sep-96 01:21:46 +polytest.c
- 10474 3176 69.6% 29-Jan-97 19:05:46 +project.c
- 18896 4461 76.3% 12-Mar-97 02:16:02 +quadric.c
- 7694 2205 71.3% 12-Nov-96 01:23:30 +tess.c
- 2278 1025 55.0% 17-Feb-97 17:24:30 +tess.h
- 9768 2092 78.5% 17-Feb-97 17:25:28 +tesselat.c
- 1176 263 77.6% 19-Dec-94 18:56:56 +3d.h
- 552 352 36.2% 16-Oct-96 00:43:30 +descrip.mms
- 598 322 46.1% 30-May-96 01:18:18 +Imakefile
- 1327 747 43.7% 14-Sep-96 22:36:30 +Makefile
- 1407 796 43.4% 03-Feb-97 19:50:04 +Makefile.BeOS
- 1337 750 43.9% 06-Jan-97 13:41:12 +MAKEFILE.DJ
- 1438 781 45.6% 07-Jan-97 10:42:08 +MAKEFILE.DOS
- 1402 793 43.4% 02-Dec-96 20:15:20 +Makefile.NeXT
- 1327 747 43.7% 30-Nov-96 14:34:50 +Makefile.OpenStep
- 1838 593 67.7% 24-Apr-96 03:16:18 +Mesaauxos2.def
- 117 86 26.4% 24-Apr-96 02:53:36 +Mesaauxos2.rsp
- 0 0 0.0% 25-Jun-97 20:18:26 +SCOPTIONS
- 2615 1230 52.9% 25-Jun-97 20:18:26 +Smakefile
- 425 263 38.1% 05-Mar-96 19:26:26 +font.c
- 9933 2388 75.9% 03-Feb-97 19:51:30 +glaux.c
- 226 143 36.7% 05-Mar-96 19:26:26 +image.c
- 0 0 0.0% 25-Jun-97 20:18:26 +SCOPTIONS
- 27796 5155 81.4% 25-Apr-96 19:15:34 +shapes.c
- 2524 1207 52.1% 25-Jun-97 20:18:26 +Smakefile
- 6711 1782 73.4% 05-Mar-96 19:26:26 +teapot.c
- 3046 1078 64.6% 05-Mar-96 19:26:26 +vect3d.c
- 2335 647 72.2% 05-Mar-96 19:26:26 +xxform.c
- 1618 764 52.7% 24-Nov-96 19:06:54 +descrip.mms
- 1474 582 60.5% 30-May-96 05:07:30 +Imakefile
- 2396 1236 48.4% 25-Jun-97 20:18:22 +Makefile
- 2173 1166 46.3% 03-Feb-97 19:53:26 +Makefile.BeOS
- 2066 1105 46.5% 22-Oct-96 01:35:32 +Makefile.NeXT
- 7350 1114 84.8% 24-Nov-96 19:06:44 +mms_depend
- 10460 2466 76.4% 13-Mar-97 03:08:28 +accum.c
- 1427 719 49.6% 13-Mar-97 03:08:34 +accum.h
- 3463 1390 59.8% 13-Mar-97 03:08:28 +alpha.c
- 1235 682 44.7% 13-Mar-97 03:08:34 +alpha.h
- 6526 1734 73.4% 13-Mar-97 03:08:28 +alphabuf.c
- 2350 800 65.9% 13-Mar-97 03:08:34 +alphabuf.h
- 74693 11352 84.8% 13-Mar-97 03:08:28 +api.c
- 20150 3943 80.4% 13-Mar-97 03:08:28 +attrib.c
- 1270 659 48.1% 13-Mar-97 03:08:34 +attrib.h
- 7136 1126 84.2% 17-Feb-97 20:29:22 +depend
- 7352 1122 84.7% 06-Jan-96 21:56:54 +DEPEND.DOS
- 2386 1238 48.1% 03-Mar-97 09:14:42 +MAKEFILE.DJ
- 2424 1264 47.8% 23-Mar-97 05:43:12 +MAKEFILE.DOS
- 2222 1160 47.7% 24-Nov-96 19:18:36 +Makefile.OpenStep
- 10525 2398 77.2% 24-Apr-96 00:29:44 +MesaGLos2.def
- 620 254 59.0% 24-Nov-96 19:07:22 +MesaGLos2.rsp
- 5763 2043 64.5% 13-Mar-97 03:08:28 +bitmap.c
- 1791 740 58.6% 13-Mar-97 03:08:34 +bitmap.h
- 13998 3448 75.3% 13-Mar-97 03:08:28 +blend.c
- 1714 780 54.4% 13-Mar-97 03:08:34 +blend.h
- 3825 1290 66.2% 13-Mar-97 03:08:28 +bresenhm.c
- 5055 1565 69.0% 13-Mar-97 03:08:34 +bresenhm.h
- 29517 6568 77.7% 13-Mar-97 03:08:28 +clip.c
- 1968 841 57.2% 13-Mar-97 03:08:34 +clip.h
- 40748 7972 80.4% 13-Mar-97 03:08:28 +cmesa.c
- 2440 744 69.5% 24-Nov-96 20:39:56 +colors.h
- 3508 1521 56.6% 13-Mar-97 03:08:34 +config.h
- 51369 12617 75.4% 14-Mar-97 00:24:50 +context.c
- 4375 1590 63.6% 13-Mar-97 03:08:34 +context.h
- 14695 3161 78.4% 13-Mar-97 03:08:28 +copypix.c
- 1227 674 45.0% 13-Mar-97 03:08:34 +copypix.h
- 14875 4069 72.6% 13-Mar-97 03:08:34 +dd.h
- 20342 4985 75.4% 13-Mar-97 03:08:28 +ddsample.c
- 20032 3862 80.7% 13-Mar-97 03:08:28 +depth.c
- 3040 1017 66.5% 13-Mar-97 03:08:34 +depth.h
- 80009 15910 80.1% 13-Mar-97 03:08:28 +dlist.c
- 14902 2603 82.5% 13-Mar-97 03:08:34 +dlist.h
- 32551 8176 74.8% 02-Mar-97 16:46:26 +dosmesa.c
- 60104 11643 80.6% 13-Mar-97 03:08:28 +draw.c
- 2157 855 60.3% 13-Mar-97 03:08:34 +draw.h
- 29614 5939 79.9% 13-Mar-97 03:08:28 +drawpix.c
- 1291 711 44.9% 13-Mar-97 03:08:34 +drawpix.h
- 18873 3671 80.5% 13-Mar-97 03:08:28 +enable.c
- 1344 670 50.1% 13-Mar-97 03:08:34 +enable.h
- 73269 11029 84.9% 13-Mar-97 03:08:30 +eval.c
- 3555 976 72.5% 13-Mar-97 03:08:34 +eval.h
- 10209 2535 75.1% 13-Mar-97 03:08:30 +feedback.c
- 2086 898 56.9% 13-Mar-97 03:08:34 +feedback.h
- 2030 931 54.1% 13-Mar-97 03:08:34 +fixed.h
- 11749 2360 79.9% 13-Mar-97 03:08:30 +fog.c
- 1694 767 54.7% 13-Mar-97 03:08:34 +fog.h
- 102118 16688 83.6% 13-Mar-97 03:08:30 +get.c
- 1341 673 49.8% 13-Mar-97 03:08:34 +get.h
- 42198 10958 74.0% 13-Mar-97 03:08:30 +glx.c
- 18890 4143 78.0% 13-Mar-97 03:08:30 +image.c
- 2645 1014 61.6% 13-Mar-97 03:08:34 +image.h
- 4874 1605 67.0% 13-Mar-97 03:08:30 +interp.c
- 3432 1338 61.0% 13-Mar-97 03:08:34 +interp.h
- 44961 9724 78.3% 13-Mar-97 03:08:30 +light.c
- 3850 1078 72.0% 13-Mar-97 03:08:34 +light.h
- 23689 4418 81.3% 13-Mar-97 03:08:30 +lines.c
- 1230 665 45.9% 13-Mar-97 03:08:34 +lines.h
- 17834 2290 87.1% 13-Mar-97 03:08:30 +logic.c
- 2203 815 63.0% 13-Mar-97 03:08:34 +logic.h
- 6174 2262 63.3% 13-Mar-97 03:08:34 +macros.h
- 5002 1510 69.8% 13-Mar-97 03:08:30 +masking.c
- 2376 849 64.2% 13-Mar-97 03:08:34 +masking.h
- 22111 6195 71.9% 13-Mar-97 03:08:30 +matrix.c
- 2114 852 59.6% 13-Mar-97 03:08:34 +matrix.h
- 12824 3232 74.7% 13-Mar-97 03:08:30 +misc.c
- 1734 778 55.1% 13-Mar-97 03:08:34 +misc.h
- 36320 7406 79.6% 13-Mar-97 03:08:30 +osmesa.c
- 13925 2933 78.9% 13-Mar-97 03:08:30 +pb.c
- 4225 1559 63.1% 13-Mar-97 03:08:34 +pb.h
- 25322 4902 80.6% 13-Mar-97 03:08:30 +pixel.c
- 2564 919 64.1% 13-Mar-97 03:08:34 +pixel.h
- 18110 3895 78.4% 13-Mar-97 03:08:30 +pointers.c
- 1237 664 46.3% 13-Mar-97 03:08:34 +pointers.h
- 15653 3464 77.8% 13-Mar-97 03:08:30 +points.c
- 1155 647 43.9% 13-Mar-97 03:08:34 +points.h
- 3658 1254 65.7% 13-Mar-97 03:08:30 +polygon.c
- 1484 715 51.8% 13-Mar-97 03:08:34 +polygon.h
- 25273 4629 81.6% 13-Mar-97 03:08:30 +readpix.c
- 1239 676 45.4% 13-Mar-97 03:08:34 +readpix.h
- 2833 1235 56.4% 13-Mar-97 03:08:30 +scissor.c
- 1465 716 51.1% 13-Mar-97 03:08:34 +scissor.h
- 25663 4400 82.8% 13-Mar-97 03:08:30 +span.c
- 2577 875 66.0% 13-Mar-97 03:08:34 +span.h
- 22756 4294 81.1% 13-Mar-97 03:08:30 +stencil.c
- 2391 857 64.1% 13-Mar-97 03:08:34 +stencil.h
- 13897 3303 76.2% 13-Mar-97 03:08:30 +svgamesa.c
- 68031 9541 85.9% 13-Mar-97 03:08:30 +teximage.c
- 7046 1295 81.6% 13-Mar-97 03:08:34 +teximage.h
- 14276 2902 79.6% 13-Mar-97 03:08:30 +texobj.c
- 1910 799 58.1% 13-Mar-97 03:08:34 +texobj.h
- 110453 14382 86.9% 13-Mar-97 03:08:30 +texture.c
- 4254 1147 73.0% 13-Mar-97 03:08:34 +texture.h
- 23099 5057 78.1% 13-Mar-97 03:08:30 +triangle.c
- 1110 627 43.5% 13-Mar-97 03:08:34 +triangle.h
- 30026 8334 72.2% 14-Mar-97 00:25:20 +tritemp.h
- 42730 11155 73.8% 13-Mar-97 03:08:34 +types.h
- 40387 5947 85.2% 13-Mar-97 03:08:30 +varray.c
- 3127 898 71.2% 13-Mar-97 03:08:34 +varray.h
- 50388 11286 77.6% 25-Jun-97 20:18:26 +ADisp_AGA.c
- 1319 738 44.0% 13-Mar-97 03:08:32 +vb.c
- 3439 1564 54.5% 13-Mar-97 03:08:34 +vb.h
- 5381 1451 73.0% 13-Mar-97 03:08:32 +vertex.c
- 2254 809 64.1% 13-Mar-97 03:08:34 +vertex.h
- 3032 1362 55.0% 13-Mar-97 03:08:32 +winpos.c
- 2263 791 65.0% 13-Mar-97 03:08:34 +winpos.h
- 47156 12508 73.4% 28-Jan-97 21:31:28 +wmesa.c
- 46483 12123 73.9% 24-Nov-96 20:40:04 +wmesa_stereo.c
- 2555 1202 52.9% 24-Nov-96 20:42:30 +wmesadef.h
- 9426 3521 62.6% 13-Mar-97 03:14:54 +xfonts.c
- 8421 2328 72.3% 13-Mar-97 03:08:32 +xform.c
- 2579 1059 58.9% 13-Mar-97 03:08:34 +xform.h
- 46366 13075 71.8% 13-Mar-97 03:08:32 +xmesa1.c
- 87309 10718 87.7% 13-Mar-97 03:08:32 +xmesa2.c
- 57766 7847 86.4% 13-Mar-97 03:08:32 +xmesa3.c
- 12697 4569 64.0% 13-Mar-97 03:08:34 +xmesaP.h
- 3258 1322 59.4% 29-Jan-97 19:58:48 +bounce.c
- 5350 1724 67.7% 12-Mar-97 02:12:28 +clearspd.c
- 1571 554 64.7% 16-Oct-96 00:31:56 +descrip.mms
- 1573 585 62.8% 21-Oct-95 13:33:32 +fdraw.f
- 858 455 46.9% 21-Oct-95 13:34:36 +ftest.c
- 4666 953 79.5% 29-Jan-97 19:59:02 +gamma.c
- 2004 433 78.3% 30-May-96 02:30:58 +Imakefile
- 1611 891 44.6% 25-Jun-97 20:18:20 +Makefile
- 891 301 66.2% 25-Jun-97 20:18:26 +ADisp_AGA.h
- 46823 8605 81.6% 25-Jun-97 20:18:24 +ADisp_Cyb.c
- 304 177 41.7% 25-Jun-97 20:18:22 +ADisp_Cyb.h
- 13845 4480 67.6% 25-Jun-97 20:18:20 +AmigaMesa.c
- 32654 5963 81.7% 25-Jun-97 20:18:22 +api1.c
- 35601 5448 84.6% 25-Jun-97 20:18:22 +api2.c
- 0 0 0.0% 25-Jun-97 20:18:20 +SCOPTIONS
- 4329 1735 59.9% 25-Jun-97 20:18:20 +Smakefile
- 7699 2040 73.5% 29-Jan-97 19:59:12 +gears.c
- 2420 1074 55.6% 29-Jan-97 19:59:20 +glxdemo.c
- 3645 1547 57.5% 29-Jan-97 19:59:28 +glxpixmap.c
- 6105 2041 66.5% 29-Jan-97 19:59:42 +isosurf.c
- 41060 6850 83.3% 13-Feb-97 18:22:52 +morph3d.c
- 8428 3368 60.0% 29-Jan-97 20:00:36 +offset.c
- 3420 1329 61.1% 01-May-96 14:39:16 +osdemo.c
- 8422 2559 69.6% 29-Jan-97 20:01:30 +reflect.c
- 5775 1903 67.0% 21-Feb-97 20:29:18 +spectex.c
- 2844 1010 64.4% 29-Jan-97 20:00:46 +spin.c
- 15970 4967 68.8% 04-Mar-97 19:12:56 +stex3d.c
- 8054 2613 67.5% 28-Jul-95 19:03:56 +tess_demo.c
- 1380 606 56.0% 07-Jun-95 15:37:54 +test0.c
- 6428 1833 71.4% 29-Jan-97 20:01:06 +texobj.c
- 4322 1641 62.0% 12-Mar-97 02:12:38 +trispd.c
- 5330 2295 56.9% 29-Jan-97 19:42:28 +accanti.c
- 4631 1989 57.0% 29-Jan-97 19:42:12 +accnot.c
- 7307 2809 61.5% 29-Jan-97 19:42:28 +accpersp.c
- 8405 3594 57.2% 29-Jan-97 19:42:26 +accum.c
- 10102 1293 87.2% 29-May-96 04:38:14 +Imakefile
- 1448 766 47.0% 01-Aug-95 20:59:26 +Makefile
- 1868 727 61.0% 28-Jul-95 21:53:12 +NOTES
- 2260 1229 45.6% 19-Dec-94 18:57:22 +README
- 418278 67175 83.9% 02-Jun-95 14:30:14 +isosurf.dat
- 0 0 0.0% 25-Jun-97 20:18:20 +SCOPTIONS
- 2692 1248 53.6% 25-Jun-97 20:18:20 +Smakefile
- 7044 1868 73.4% 15-Oct-96 00:19:48 +vgears.c
- 1039 565 45.6% 16-Jan-96 16:03:22 +vindex.c
- 1355 565 58.3% 15-Oct-96 00:13:12 +vtest.c
- 1831 909 50.3% 29-Jan-97 20:01:44 +winpos.c
- 7481 2156 71.1% 29-Jan-97 20:01:14 +xdemo.c
- 3947 2017 48.8% 29-Jan-97 19:44:14 +aim.c
- 3483 1725 50.4% 29-Jan-97 19:42:26 +alpha.c
- 4430 2062 53.4% 29-Jan-97 19:42:24 +alpha3D.c
- 3839 1909 50.2% 29-Jan-97 19:42:22 +anti.c
- 3680 1881 48.8% 29-Jan-97 19:42:22 +antiindex.c
- 3683 1845 49.9% 29-Jan-97 19:42:22 +antipindex.c
- 3520 1774 49.6% 29-Jan-97 19:42:22 +antipoint.c
- 4650 2109 54.6% 29-Jan-97 19:42:22 +antipoly.c
- 3488 1760 49.5% 29-Jan-97 19:42:22 +bezcurve.c
- 4328 1982 54.2% 29-Jan-97 19:42:22 +bezmesh.c
- 3937 1868 52.5% 29-Jan-97 19:42:22 +bezsurf.c
- 4529 2031 55.1% 29-Jan-97 19:48:08 +checker.c
- 4533 2032 55.1% 29-Jan-97 19:48:24 +checker2.c
- 4398 1982 54.9% 29-Jan-97 19:48:28 +chess.c
- 3295 1690 48.7% 29-Jan-97 19:42:22 +clip.c
- 4417 1946 55.9% 29-Jan-97 19:42:22 +colormat.c
- 4480 1994 55.4% 29-Jan-97 19:42:22 +cone.c
- 3430 1757 48.7% 29-Jan-97 19:42:22 +cube.c
- 3604 1813 49.6% 29-Jan-97 19:42:22 +curve.c
- 3447 1773 48.5% 29-Jan-97 19:42:22 +depthcue.c
- 3983 1839 53.8% 18-Feb-97 17:24:20 +disk.c
- 8400 3330 60.3% 29-Jan-97 19:42:22 +dof.c
- 5496 2469 55.0% 29-Jan-97 19:45:28 +dofnot.c
- 3906 1879 51.8% 29-Jan-97 19:42:22 +double.c
- 3315 1661 49.8% 29-Jan-97 19:42:22 +drawf.c
- 5055 2212 56.2% 29-Jan-97 19:42:22 +feedback.c
- 5476 2482 54.6% 29-Jan-97 19:42:22 +fog.c
- 4348 2002 53.9% 29-Jan-97 19:42:22 +fogindex.c
- 11728 3082 73.7% 29-Jan-97 19:42:22 +font.c
- 5900 2703 54.1% 19-Dec-94 18:57:26 +jitter.h
- 3673 1809 50.7% 29-Jan-97 19:42:22 +light.c
- 3586 1738 51.5% 29-Jan-97 19:42:22 +linelist.c
- 4231 1948 53.9% 29-Jan-97 19:42:22 +lines.c
- 3541 1783 49.6% 29-Jan-97 19:42:22 +list.c
- 3702 1844 50.1% 29-Jan-97 19:42:22 +list2.c
- 3952 1929 51.1% 29-Jan-97 19:46:32 +maplight.c
- 10872 2671 75.4% 29-Jan-97 19:42:22 +material.c
- 5575 2200 60.5% 29-Jan-97 19:42:22 +mipmap.c
- 3858 1819 52.8% 29-Jan-97 19:42:20 +model.c
- 4380 2113 51.7% 29-Jan-97 19:42:20 +movelight.c
- 6033 2476 58.9% 29-Jan-97 19:42:20 +nurbs.c
- 5591 2551 54.3% 29-Jan-97 19:42:20 +pickdepth.c
- 4477 2109 52.8% 29-Jan-97 19:42:20 +pickline.c
- 5627 2578 54.1% 29-Jan-97 19:42:20 +picksquare.c
- 5257 2073 60.5% 29-Jan-97 19:42:20 +plane.c
- 3757 1830 51.2% 29-Jan-97 19:42:20 +planet.c
- 3907 1858 52.4% 29-Jan-97 19:42:20 +planetup.c
- 4647 1864 59.8% 29-Jan-97 19:42:20 +polys.c
- 3905 1829 53.1% 29-Jan-97 19:42:20 +robot.c
- 4273 1955 54.2% 29-Jan-97 19:42:20 +sccolorlight.c
- 4247 1938 54.3% 29-Jan-97 19:42:20 +scene.c
- 4121 1877 54.4% 29-Jan-97 19:42:20 +scenebamb.c
- 4151 1895 54.3% 29-Jan-97 19:42:20 +sceneflat.c
- 7026 2770 60.5% 29-Jan-97 19:48:40 +select.c
- 2627 1416 46.0% 29-Jan-97 19:42:20 +simple.c
- 3280 1665 49.2% 29-Jan-97 19:42:20 +smooth.c
- 3051 1599 47.5% 29-Jan-97 19:42:20 +sphere.c
- 5351 2291 57.1% 29-Jan-97 19:42:20 +stencil.c
- 5094 2223 56.3% 29-Jan-97 19:42:20 +stroke.c
- 4453 2124 52.3% 29-Jan-97 19:42:20 +surface.c
- 4931 2142 56.5% 29-Jan-97 19:42:20 +tea.c
- 4692 2013 57.0% 29-Jan-97 19:42:20 +teaambient.c
- 7328 2916 60.2% 29-Jan-97 19:49:36 +teapots.c
- 4379 2060 52.9% 29-Jan-97 19:42:20 +texgen.c
- 4887 2173 55.5% 29-Jan-97 19:42:18 +texturesurf.c
- 0 0 0.0% 25-Jun-97 20:18:20 +SCOPTIONS
- 2431 1127 53.6% 25-Jun-97 20:18:20 +Smakefile
- 5245 2365 54.9% 29-Jan-97 19:42:16 +trim.c
- 4406 2217 49.6% 29-Jan-97 19:42:16 +xfont.c
- 51607 40654 21.2% 19-Dec-94 18:56:28 +1.rgb
- 39632 34493 12.9% 19-Dec-94 18:56:28 +2.rgb
- 89287 55470 37.8% 19-Dec-94 18:56:28 +3.rgb
- 45167 32654 27.7% 19-Dec-94 18:56:28 +4.rgb
- 3598 1527 57.5% 03-Oct-95 18:38:48 +accum.c
- 6263 2001 68.0% 21-Jul-96 19:01:46 +bitmap1.c
- 42272 4027 90.4% 29-Jan-97 19:50:54 +bitmap2.c
- 7165 1963 72.6% 29-Jan-97 19:56:56 +blendeq.c
- 4256 677 84.0% 30-May-96 02:32:02 +Imakefile
- 1389 655 52.8% 25-Jun-97 20:18:20 +Makefile
- 1224 587 52.0% 28-Jul-95 21:53:42 +NOTES
- 14414 2864 80.1% 19-Dec-94 18:56:28 +README
- 3598 1334 62.9% 29-Jan-97 19:51:50 +blendxor.c
- 4311 1828 57.5% 23-Jan-96 14:27:52 +copy.c
- 4365 1648 62.2% 03-Oct-95 18:38:42 +cursor.c
- 5187 1829 64.7% 03-Oct-95 18:38:42 +depth.c
- 10487 3110 70.3% 29-Jan-97 19:57:30 +eval.c
- 7175 2306 67.8% 03-Oct-95 18:38:40 +fog.c
- 5784 2040 64.7% 03-Oct-95 18:38:40 +font.c
- 4420 1849 58.1% 23-Nov-96 15:54:16 +line.c
- 36524 6014 83.5% 14-Mar-97 00:22:48 +logo.c
- 6494 2230 65.6% 03-Oct-95 18:38:38 +nurb.c
- 5421 1749 67.7% 13-Mar-97 02:16:48 +oglinfo.c
- 8934 3183 64.3% 29-Jan-97 19:54:28 +olympic.c
- 8343 2838 65.9% 20-May-96 19:05:46 +overlay.c
- 4772 1862 60.9% 12-Jun-96 21:31:32 +point.c
- 11544 2475 78.5% 03-Oct-95 18:38:28 +prim.c
- 10681 3280 69.2% 29-Jan-97 19:54:38 +quad.c
- 0 0 0.0% 25-Jun-97 20:18:20 +SCOPTIONS
- 9312 2887 68.9% 03-Oct-95 18:38:28 +select.c
- 5761 2028 64.7% 03-Oct-95 18:38:28 +shape.c
- 2851 1281 55.0% 25-Jun-97 20:18:20 +Smakefile
- 8879 3008 66.1% 12-Sep-96 12:02:06 +speed.c
- 18175 4749 73.8% 11-Mar-97 01:01:46 +sphere.c
- 7089 2623 62.9% 20-Jan-96 20:11:30 +star.c
- 3385 1452 57.1% 03-Oct-95 18:38:24 +stencil.c
- 8534 2707 68.2% 29-Jan-97 19:55:58 +stretch.c
- 7892 2524 68.0% 03-Oct-95 18:38:24 +texture.c
- 8363 2836 66.0% 29-Jan-97 19:56:04 +tri.c
- 15056 4358 71.0% 29-Jan-97 19:57:54 +wave.c
- 17976 6986 61.1% 31-Jan-97 17:13:46 +COPYING
- 1289 665 48.4% 31-Jan-97 17:13:46 +ChangeLog
- 16009 5395 66.3% 31-Jan-97 17:13:46 +config.guess
- 4745 1870 60.5% 31-Jan-97 17:13:46 +config.status
- 16318 5310 67.4% 31-Jan-97 17:13:46 +config.sub
- 79791 19653 75.3% 15-Feb-97 23:12:54 +configure
- 4859 1993 58.9% 15-Feb-97 23:11:58 +configure.in
- 1274 610 52.1% 31-Jan-97 17:13:46 +ChangeLog
- 251 158 37.0% 31-Jan-97 17:13:46 +Cube
- 780 459 41.1% 31-Jan-97 17:13:46 +INSTALL
- 4388 1618 63.1% 31-Jan-97 17:13:46 +Makefile.in
- 2675 1404 47.5% 31-Jan-97 17:13:46 +README
- 1025 523 48.9% 31-Jan-97 17:13:46 +TODO
- 9022 2965 67.1% 31-Jan-97 17:13:46 +cube.c
- 648 306 52.7% 31-Jan-97 17:13:46 +Ed
- 21626 6170 71.4% 31-Jan-97 17:13:46 +ed.c
- 10887 3001 72.4% 31-Jan-97 17:13:46 +events
- 6953 2103 69.7% 31-Jan-97 17:13:46 +Makefile.in
- 355 190 46.4% 31-Jan-97 17:13:46 +Mcube
- 10192 3218 68.4% 31-Jan-97 17:13:46 +mcube.c
- 535 311 41.8% 31-Jan-97 17:13:46 +Tea
- 18882 6387 66.1% 31-Jan-97 17:13:46 +tea.c
- 1238 536 56.7% 31-Jan-97 17:13:46 +ChangeLog
- 6980 1903 72.7% 31-Jan-97 17:13:46 +GLwDrawA.h
- 4362 1580 63.7% 31-Jan-97 17:13:46 +GLwDrawAP.h
- 1051 631 39.9% 31-Jan-97 17:13:46 +GLwMDrawA.h
- 1054 632 40.0% 31-Jan-97 17:13:46 +GLwMDrawAP.h
- 2071 1061 48.7% 31-Jan-97 17:13:46 +Makefile
- 2030 1014 50.0% 31-Jan-97 17:13:46 +Makefile.in
- 1693 752 55.5% 31-Jan-97 17:13:46 +MesaDrawingArea.h
- 3927 1139 70.9% 31-Jan-97 17:13:46 +MesaDrawingAreaP.h
- 144 108 25.0% 31-Jan-97 17:13:46 +MesaMDrawingArea.h
- 148 110 25.6% 31-Jan-97 17:13:46 +MesaMDrawingAreaP.h
- 116 81 30.1% 31-Jan-97 17:13:46 +MesaMWorkstation.h
- 118 81 31.3% 31-Jan-97 17:13:46 +MesaMWorkstationP.h
- 4201 1067 74.6% 31-Jan-97 17:13:46 +MesaWorkstation.h
- 3204 1124 64.9% 31-Jan-97 17:13:46 +MesaWorkstationP.h
- 4771 1857 61.0% 31-Jan-97 17:13:46 +install-sh
- 420 231 45.0% 31-Jan-97 17:13:44 +ChangeLog
- 4354 1887 56.6% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.3x
- 2032 683 66.3% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.html
- 971 464 52.2% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.pod
- 29052 8528 70.6% 31-Jan-97 17:13:44 +GLwDrawingArea.3x
- 28843 7582 73.7% 31-Jan-97 17:13:44 +GLwDrawingArea.html
- 24689 6902 72.0% 31-Jan-97 17:13:44 +GLwDrawingArea.pod
- 3905 1745 55.3% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.3x
- 1162 492 57.6% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.html
- 545 308 43.4% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.pod
- 3868 1728 55.3% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.3x
- 1127 476 57.7% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.html
- 510 295 42.1% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.pod
- 2477 1164 53.0% 31-Jan-97 17:13:44 +Makefile.in
- 5969 2300 61.4% 31-Jan-97 17:13:44 +MesaDrawingArea.3x
- 3613 1079 70.1% 31-Jan-97 17:13:44 +MesaDrawingArea.html
- 2560 856 66.5% 31-Jan-97 17:13:44 +MesaDrawingArea.pod
- 7709 2554 66.8% 31-Jan-97 17:13:44 +MesaWorkstation.3x
- 9019 1452 83.9% 31-Jan-97 17:13:44 +MesaWorkstation.html
- 4141 1089 73.7% 31-Jan-97 17:13:44 +MesaWorkstation.pod
- 3616 1404 61.1% 31-Jan-97 17:13:44 +ChangeLog
- 1298 741 42.9% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.c
- 20799 5906 71.6% 31-Jan-97 17:13:44 +GLwDrawingArea.c
- 1224 709 42.0% 31-Jan-97 17:13:46 +GLwDrawingAreaMakeCurrent.c
- 1182 689 41.7% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.c
- 1366 770 43.6% 31-Jan-97 17:13:44 +GLwMakeCurrent.c
- 1061 628 40.8% 31-Jan-97 17:13:44 +GLwMDrawingArea.c
- 1370 774 43.5% 31-Jan-97 17:13:46 +GLwMMakeCurrent.c
- 5104 1595 68.7% 31-Jan-97 17:13:44 +Makefile.in
- 8603 2804 67.4% 31-Jan-97 17:13:46 +MesaDrawingArea.c
- 78 73 6.4% 31-Jan-97 17:13:44 +MesaMDrawingArea.c
- 52 52 0.0% 31-Jan-97 17:13:44 +MesaMWorkstation.c
- 20042 4608 77.0% 31-Jan-97 17:13:44 +MesaWorkstation.c
- 24543 6704 72.6% 13-Sep-96 00:39:48 +GLwDrawA.c
- 2996 1007 66.3% 25-Jun-97 20:18:18 +AmigaMesa.Install
- 1919 1050 45.2% 25-Jun-97 20:18:18 +AmigaMesa.Install.info
- 14298 4620 67.6% 03-Oct-96 01:45:34 +boilerplate.c
- 259 101 61.0% 13-Sep-96 00:40:04 +depend
- 6611 2407 63.5% 13-Sep-96 00:39:52 +GLwDrawA.h
- 4291 1650 61.5% 13-Sep-96 00:39:54 +GLwDrawAP.h
- 2030 1120 44.8% 13-Sep-96 00:39:54 +GLwMDrawA.c
- 2030 1120 44.8% 13-Sep-96 00:39:56 +GLwMDrawA.h
- 2031 1121 44.8% 13-Sep-96 00:39:56 +GLwMDrawAP.h
- 899 502 44.1% 08-Feb-97 07:52:14 +Makefile
- 873 487 44.2% 13-Sep-96 00:39:58 +Makefile~
- 2490 1352 45.7% 13-Sep-96 00:40:00 +README
- 1351 459 66.0% 25-Jun-97 20:18:16 +Build.info
- 290 174 40.0% 25-Jun-97 20:18:16 +SCoptions
- 1736 1052 39.4% 25-Jun-97 20:18:16 +SCoptions.info
- 23724 9656 59.2% 25-Jun-97 20:18:16 +FileReplace
- 4194 1538 63.3% 25-Jun-97 20:18:16 +FileReplace.cpp
- 58311 6554 88.7% 25-Jun-97 20:18:18 +Fixprotos
- 17967 3208 82.1% 25-Jun-97 20:18:18 +gl.fd
- 53801 10162 81.1% 25-Jun-97 20:18:18 +gl.h
- 15499 2560 83.4% 25-Jun-97 20:18:16 +gl_pragma.h
- 576 286 50.3% 25-Jun-97 20:18:18 +installscript
- 4472 1501 66.4% 25-Jun-97 20:18:18 +ht__colors.a
- 8234 1332 83.8% 25-Jun-97 20:18:18 +ht_colors.c
- 613 297 51.5% 25-Jun-97 20:18:18 +ht_colors.h
- 328 195 40.5% 25-Jun-97 20:18:18 +SCOPTIONS
- 1674 1075 35.7% 25-Jun-97 20:18:18 +SCoptions.info
- 423 260 38.5% 26-Aug-96 18:44:24 +errcheck.c
- 1380 609 55.8% 10-Oct-96 23:35:32 +glutskel.c
- 462 243 47.4% 26-Aug-96 19:00:24 +idproj.c
- 2578 1045 59.4% 26-Aug-96 19:01:12 +mwmborder.c
- 1346 410 69.5% 26-Aug-96 18:59:24 +projshad.c
- 440 261 40.6% 28-Aug-96 16:24:48 +README
- 6984 1977 71.6% 22-Nov-96 14:50:42 +readtex.c
- 849 413 51.3% 26-Aug-96 18:56:44 +winpos.c
- 136 106 22.0% 26-Aug-96 19:07:48 +xalloccolor.c
- -------- ------- ----- --------- --------
- 5478035 1485643 72.8% 27-Jun-97 00:01:56 527 files
-